home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C23 / all.makefile next >
Encoding:
Makefile  |  2000-05-25  |  1.9 KB  |  87 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C23
  7. # using the all compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f all.makefile
  11.  
  12. .SUFFIXES : .obj .cpp .c
  13. .cpp.obj :
  14.     $(CPP) $(CPPFLAGS) -c $<
  15. .c.obj :
  16.     $(CPP) $(CPPFLAGS) -c $<
  17.  
  18. all: \
  19.     Nonlocal.exe \
  20.     Except.exe \
  21.     Trmnator.exe \
  22.     FunctionTryBlock.exe \
  23.     Cleanup.exe \
  24.     Nudep.exe \
  25.     Wrapped.exe \
  26.     Autoexcp.exe \
  27.     Basexcpt.exe \
  28.     Catchref.exe 
  29.  
  30. test: all 
  31.     Nonlocal.exe  
  32.     Except.exe  
  33.     Trmnator.exe  
  34.     FunctionTryBlock.exe  
  35.     Cleanup.exe  
  36.     Nudep.exe  
  37.     Wrapped.exe  
  38.     Autoexcp.exe  
  39.     Basexcpt.exe  
  40.     Catchref.exe  
  41.  
  42. bugs: 
  43.     @echo No compiler bugs in this directory!
  44.  
  45. Nonlocal.exe: Nonlocal.obj 
  46.     $(CPP) $(OFLAG)Nonlocal.exe Nonlocal.obj 
  47.  
  48. Except.exe: Except.obj 
  49.     $(CPP) $(OFLAG)Except.exe Except.obj 
  50.  
  51. Trmnator.exe: Trmnator.obj 
  52.     $(CPP) $(OFLAG)Trmnator.exe Trmnator.obj 
  53.  
  54. FunctionTryBlock.exe: FunctionTryBlock.obj 
  55.     $(CPP) $(OFLAG)FunctionTryBlock.exe FunctionTryBlock.obj 
  56.  
  57. Cleanup.exe: Cleanup.obj 
  58.     $(CPP) $(OFLAG)Cleanup.exe Cleanup.obj 
  59.  
  60. Nudep.exe: Nudep.obj 
  61.     $(CPP) $(OFLAG)Nudep.exe Nudep.obj 
  62.  
  63. Wrapped.exe: Wrapped.obj 
  64.     $(CPP) $(OFLAG)Wrapped.exe Wrapped.obj 
  65.  
  66. Autoexcp.exe: Autoexcp.obj 
  67.     $(CPP) $(OFLAG)Autoexcp.exe Autoexcp.obj 
  68.  
  69. Basexcpt.exe: Basexcpt.obj 
  70.     $(CPP) $(OFLAG)Basexcpt.exe Basexcpt.obj 
  71.  
  72. Catchref.exe: Catchref.obj 
  73.     $(CPP) $(OFLAG)Catchref.exe Catchref.obj 
  74.  
  75.  
  76. Nonlocal.obj: Nonlocal.cpp 
  77. Except.obj: Except.cpp 
  78. Trmnator.obj: Trmnator.cpp 
  79. FunctionTryBlock.obj: FunctionTryBlock.cpp 
  80. Cleanup.obj: Cleanup.cpp 
  81. Nudep.obj: Nudep.cpp 
  82. Wrapped.obj: Wrapped.cpp 
  83. Autoexcp.obj: Autoexcp.cpp 
  84. Basexcpt.obj: Basexcpt.cpp 
  85. Catchref.obj: Catchref.cpp 
  86.  
  87.